home *** CD-ROM | disk | FTP | other *** search
/ Invisible Universe / Invisible Universe (1995)(Voyager)[Mac-PC].iso / mac / MOVIES / STARMAP.DIR / 00317_Script_317 < prev    next >
Text File  |  1995-11-16  |  442b  |  19 lines

  1. on mouseDown
  2.   set mV = the mouseV - the top of sprite the clickOn
  3.   set mh = the mouseH - the left of sprite the clickOn
  4.   
  5.   put mH && mV
  6.   
  7.   if mV < 26 then
  8.     if mH < 26 then go "SNN1"
  9.     else if mH < 50 then go "SNN2"
  10.     else if mH < 75 then go "SNS1"
  11.     else go "SNS2"
  12.   else  
  13.     if mH < 26 then go "SNN3"
  14.     else if mH < 50 then go "SNN4" 
  15.     else if mH < 75 then go "SNS3"
  16.     else go "SNS4"
  17.   end if
  18.   
  19. end